home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / hplip.preinst < prev    next >
Text File  |  2008-10-13  |  1KB  |  56 lines

  1. #! /bin/sh
  2. # preinst script for hplip
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <new-preinst> `install'
  10. #        * <new-preinst> `install' <old-version>
  11. #        * <new-preinst> `upgrade' <old-version>
  12. #        * <old-preinst> `abort-upgrade' <new-version>
  13. #
  14. # for details, see http://www.debian.org/doc/debian-policy/ or
  15. # the debian-policy package
  16.  
  17. case "$1" in
  18.     upgrade|install|abort-upgrade)
  19.     # Remove symlink, dpkg doesn't like it at all
  20.     if [ -h /usr/share/doc/hplip ]; then
  21.         rm -f /usr/share/doc/hplip
  22.     fi
  23.     # Kill any pre-compiled python crap which WILL bite us in the arse
  24.     [ -d /usr/share/hplip ] && \
  25.         find /usr/share/hplip \( -name '*.pyc' -o -name '*.pyo' \) \
  26.             -exec rm -f {} \;
  27.  
  28.     # Stop and remove any daemon from old HPLIP installations
  29.     if [ -x /etc/init.d/hplip ]; then
  30.         invoke-rc.d hplip stop || true
  31.         if test -n "`ps auxwww | grep hpiod | grep -v grep`"; then
  32.             echo 'Old HPLIP daemon (hpiod) should of stopped, but did not.  Please kill manually before hplip can proceed'
  33.             exit 1
  34.         fi
  35.         rm -fR /etc/init.d/hplip
  36.             update-rc.d -f hplip remove
  37.     fi
  38.  
  39.     # Remove obsolete config file for HPLIP startup script
  40.     rm -f /etc/default/hplip
  41.  
  42.     ;;
  43.  
  44.     *)
  45.         echo "preinst called with unknown argument \`$1'" >&2
  46.         exit 1
  47.     ;;
  48. esac
  49.  
  50. # dh_installdeb will replace this with shell code automatically
  51. # generated by other debhelper scripts.
  52.  
  53.  
  54.  
  55. exit 0
  56.